home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / smfdoor / frmhelp.frm (.txt) < prev    next >
Visual Basic Form  |  1999-08-13  |  5KB  |  176 lines

  1. VERSION 5.00
  2. Begin VB.Form frmHelp 
  3.    BackColor       =   &H80000012&
  4.    BorderStyle     =   1  'Fixed Single
  5.    Caption         =   "Help"
  6.    ClientHeight    =   3465
  7.    ClientLeft      =   4785
  8.    ClientTop       =   2100
  9.    ClientWidth     =   1320
  10.    Icon            =   "frmHelp.frx":0000
  11.    LinkTopic       =   "Form1"
  12.    MaxButton       =   0   'False
  13.    MinButton       =   0   'False
  14.    ScaleHeight     =   3465
  15.    ScaleWidth      =   1320
  16.    Begin VB.CommandButton cmdDone 
  17.       Caption         =   "Done"
  18.       Height          =   375
  19.       Left            =   120
  20.       TabIndex        =   4
  21.       Top             =   3000
  22.       Width           =   1095
  23.    End
  24.    Begin VB.Label lblOther 
  25.       BackColor       =   &H80000012&
  26.       Caption         =   "Other"
  27.       BeginProperty Font 
  28.          Name            =   "MS Sans Serif"
  29.          Size            =   12
  30.          Charset         =   0
  31.          Weight          =   700
  32.          Underline       =   0   'False
  33.          Italic          =   0   'False
  34.          Strikethrough   =   0   'False
  35.       EndProperty
  36.       ForeColor       =   &H00FF0000&
  37.       Height          =   495
  38.       Left            =   120
  39.       MousePointer    =   10  'Up Arrow
  40.       TabIndex        =   6
  41.       Top             =   2400
  42.       Width           =   1215
  43.    End
  44.    Begin VB.Label lblFavorites 
  45.       BackColor       =   &H80000012&
  46.       Caption         =   "Favorites"
  47.       BeginProperty Font 
  48.          Name            =   "MS Sans Serif"
  49.          Size            =   12
  50.          Charset         =   0
  51.          Weight          =   700
  52.          Underline       =   0   'False
  53.          Italic          =   0   'False
  54.          Strikethrough   =   0   'False
  55.       EndProperty
  56.       ForeColor       =   &H00FF0000&
  57.       Height          =   495
  58.       Left            =   120
  59.       MousePointer    =   10  'Up Arrow
  60.       TabIndex        =   5
  61.       Top             =   1440
  62.       Width           =   1215
  63.    End
  64.    Begin VB.Label lblGo 
  65.       BackColor       =   &H80000012&
  66.       Caption         =   "Go"
  67.       BeginProperty Font 
  68.          Name            =   "MS Sans Serif"
  69.          Size            =   12
  70.          Charset         =   0
  71.          Weight          =   700
  72.          Underline       =   0   'False
  73.          Italic          =   0   'False
  74.          Strikethrough   =   0   'False
  75.       EndProperty
  76.       ForeColor       =   &H00FF0000&
  77.       Height          =   495
  78.       Left            =   120
  79.       MousePointer    =   10  'Up Arrow
  80.       TabIndex        =   3
  81.       Top             =   1920
  82.       Width           =   1215
  83.    End
  84.    Begin VB.Label lblView 
  85.       BackColor       =   &H80000012&
  86.       Caption         =   "View"
  87.       BeginProperty Font 
  88.          Name            =   "MS Sans Serif"
  89.          Size            =   12
  90.          Charset         =   0
  91.          Weight          =   700
  92.          Underline       =   0   'False
  93.          Italic          =   0   'False
  94.          Strikethrough   =   0   'False
  95.       EndProperty
  96.       ForeColor       =   &H00FF0000&
  97.       Height          =   495
  98.       Left            =   120
  99.       MousePointer    =   10  'Up Arrow
  100.       TabIndex        =   2
  101.       Top             =   960
  102.       Width           =   1215
  103.    End
  104.    Begin VB.Label lblEdit 
  105.       BackColor       =   &H80000012&
  106.       Caption         =   "Edit"
  107.       BeginProperty Font 
  108.          Name            =   "MS Sans Serif"
  109.          Size            =   12
  110.          Charset         =   0
  111.          Weight          =   700
  112.          Underline       =   0   'False
  113.          Italic          =   0   'False
  114.          Strikethrough   =   0   'False
  115.       EndProperty
  116.       ForeColor       =   &H00FF0000&
  117.       Height          =   375
  118.       Left            =   120
  119.       MousePointer    =   10  'Up Arrow
  120.       TabIndex        =   1
  121.       Top             =   480
  122.       Width           =   855
  123.    End
  124.    Begin VB.Label lblFile 
  125.       BackColor       =   &H80000012&
  126.       Caption         =   "File"
  127.       BeginProperty Font 
  128.          Name            =   "MS Sans Serif"
  129.          Size            =   12
  130.          Charset         =   0
  131.          Weight          =   700
  132.          Underline       =   0   'False
  133.          Italic          =   0   'False
  134.          Strikethrough   =   0   'False
  135.       EndProperty
  136.       ForeColor       =   &H00FF0000&
  137.       Height          =   255
  138.       Left            =   120
  139.       MousePointer    =   10  'Up Arrow
  140.       TabIndex        =   0
  141.       Top             =   0
  142.       Width           =   975
  143.    End
  144. Attribute VB_Name = "frmHElp"
  145. Attribute VB_GlobalNameSpace = False
  146. Attribute VB_Creatable = False
  147. Attribute VB_PredeclaredId = True
  148. Attribute VB_Exposed = False
  149. Private Sub cmdDone_Click()
  150.     frmHElp.Hide
  151. End Sub
  152. Private Sub lblEdit_Click()
  153.     frmEdit.Show
  154.     frmHElp.Hide
  155. End Sub
  156. Private Sub lblFavorites_Click()
  157.     FrmHelpFavorites.Show
  158.     frmHElp.Hide
  159. End Sub
  160. Private Sub lblFile_Click()
  161.     frmFile.Show
  162.     frmHElp.Hide
  163. End Sub
  164. Private Sub lblGo_Click()
  165.     frmGo.Show
  166.     frmHElp.Hide
  167. End Sub
  168. Private Sub lblOther_Click()
  169.     frmother.Show
  170.     frmHElp.Hide
  171. End Sub
  172. Private Sub lblView_Click()
  173.     frmView.Show
  174.     frmHElp.Hide
  175. End Sub
  176.